tables

Technical Article

RE: Making a copy of a sql table within same DB

  • Reply

I don't think Select Into configures indexes and keys.You may want to script the table first with all keys and indexes but WITHOUT Drop Table option so you would not accedentally delete your original table, in the script replace a table name with a new name, run the script to create a new table. The […]

You rated this post out of 5. Change rating

2005-04-11

Technical Article

Create Synonyms

  • Topic

How can I create synonyms for tables in a database and give a user read only access to those tables.  I don't want to use the schema name before querying the table as that read only user. ThanksAnu

You rated this post out of 5. Change rating

2005-04-11

Technical Article

RE: Force Order

  • Reply

Forgive my ignorance, but why do you store such redundant data like a running balance in your db at all? The usual approach is either use something like this:IF OBJECT_ID('lfdsum_t') IS NOT NULL      DROP TABLE lfdsum_t GO CREATE TABLE lfdsum_t (col1 int) INSERT INTO lfdsum_t values (1); INSERT INTO lfdsum_t values (2); INSERT INTO lfdsum_t […]

2005-04-07

Technical Article

XML Bulk Load - getting the XSD

  • Topic

Hi all, I am trying to get this damned SQL XML Bulk Load to work and I have found that I can pass the ADO command to load it into the database.The 2 parameters I need are:1.) The XSD2.) The XML file to importThe problem I have is that the XSD file I have is […]

You rated this post out of 5. Change rating

2005-03-29

Technical Article

RE: Default Transaction Isolation Level

  • Reply

There are 4 types of transaction isolation levels. Here is the syntax :SET TRANSACTION ISOLATION LEVEL     { READ COMMITTED         | READ UNCOMMITTED         | REPEATABLE READ         | SERIALIZABLE     }Once you set the Isolation level, it will work for that particular connection.--Kishore 

You rated this post out of 5. Change rating

2005-03-29

Blogs

Small Data SF 2024

By

I can’t remember how I heard about Small Data SF 2024, but it caught...

A New Word: Moledro

By

moledro – n. a feeling of resonant connection with an author or artist you’ll...

Snowflake + Azure blob

By

Let’s go back to data platforms today and I want to talk about a...

Read the latest Blogs

Forums

7 sept, scheduled book

By philip.scott

Comments posted to this topic are about the item 7 sept, scheduled book

7 sept, schedlued article

By philip.scott

Comments posted to this topic are about the item 7 sept, schedlued article

6 sept, published book

By philip.scott

Comments posted to this topic are about the item 6 sept, published book

Visit the forum

Question of the Day

Azure Data Lake Storage Gen 2

Azure Data Lake Storage Gen 2 is built on ...?

See possible answers