Tagged Questions
The newid tag has no wiki summary.
9
votes
3answers
8k views
newid() inside sql server function
i have to insert a fake column at the result of a query which is the return value of a table-value function. this column must be uniqueidentifier type. the best way (i think ...) is to use 'newid()' ...
4
votes
3answers
1k views
“order by newid()” - how does it work?
I know that If I run this query
select top 100 * from mytable order by newid()
it will get 100 random records from my table.
However, I'm a bit confused as to how it works, since I don't see ...
3
votes
2answers
462 views
Sql Server - Insufficient result space to convert uniqueidentifier value to char
I am getting below error when I run sql query while copying data from one table to another,
Msg 8170, Level 16, State 2, Line 2
Insufficient result space to convert
uniqueidentifier value to ...
3
votes
3answers
1k views
Changing newid() to newsequentialid() on an existing table
At the moment we have a number of tables that are using newid() on the primary key. This is causing large amounts of fragmentation. So I would like to change the column to use newsequentialid() ...
2
votes
1answer
63 views
Optimize Random T-SQL
First: What do you think about the way I random? Is this way too poor?.
I have a table TABLE_A:
id | name | state
---------------------|----------
1703248 | blablabla | 1
... | ...
1
vote
2answers
532 views
Get last inserted UNIQUEIDENTIFIER in SQL Server 2000
The OUTPUT clause is compatible with SQL Server 2005 but not SQL Server 2000.
How do I convert this command to work in SQL Server 2000?
CREATE TABLE sample
(
ID uniqueidentifier NOT NULL DEFAULT ...
1
vote
2answers
425 views
Is MsSQL NEWID bad like MySQL Rand()
according to this article: http://net.tutsplus.com/tutorials/other/top-20-mysql-best-practices/
using ORDER BY RAND() is a bad idea because:
The problem is, MySQL will have to perform RAND() ...
1
vote
2answers
102 views
Any issues about using NEWID() for API key?
I am working on a small piece that will generate an API Key using SQL Sever's NEWID(). The key will be used to access certain parts of our web app and will be passed in through a URL. The key is ...
1
vote
4answers
160 views
Sql Server 2005: Today's random records
I can easily get a random record with this:
SELECT * FROM MyTable ORDER BY NewId()
I can easily get a record with "today's date" with this:
SELECT * FROM MyTable WHERE MyDate = ...
1
vote
2answers
1k views
Remove autogenerate GUID column from Add Entry pages in Dynamic Data Web Application
I have a Dynamic Data Entities Web Application that uses a database with GUIDs as primary keys for tables. All of the GUID fields have the default value set to NEWID() so SQL Server will generate a ...
0
votes
1answer
179 views
SQL SP not consistantly generating unique newid()
I am having problems with a stored procedure that i have created. I just started programming with sql about 6 months ago, so my SP might appear to be sloppy, so sorry in advance. Heres the issue i am ...